using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
namespace _0903_判斷和迴圈
日" + "\n", s);
int n = convert.toint32(s);
if (n <= 0 || n > 30)
else
// //if (n == 17)
// //
// // if (n==18)
// //
// // if (n==20)
// //
// // if(n==25)
// //
// // if(n==28)
// //
// //else
// //
// /*
// //判斷語句第二種 switch 分支判斷
// //有括號的,case
// //if(布林值)
// //switch(字串/整型)
// //
// break;指結束當前判斷,返回上一層
// */
// switch ( s)
// 生日", s);
// break;
// case "b":
// console.writeline("9月17日 表示生日", s);
// break;
// case "c":
// console.writeline("9月18日 表示生日", s);
// break;
// case "d":
// console.writeline("9月20日 表示生日", s);
// break;
// case "e":
// console.writeline("9月25日 表示生日", s);
// break;
// case "f":
// console.writeline("9月28日 表示生日", s);
// break;
// default:
// console.writeline("沒人過生日", s);
// break;
// }}/*
迴圈分為兩種:
for(起始變數(迴圈次數);判斷條件;操作)
注意死迴圈:特徵不停的迴圈
原因:條件恒為真
*/console.writeline("倒計時 開始");
for (int i = 1; i <= 12; i++)
*=" + "\t", i, j, (i * j));}}
console.readline();}}
}}
C語言 判斷和迴圈
1.三目運算子 三目運算子的表示 相當於簡易版if else語句 a 3 4 3 4 先執行等號後面的三目語句,若問號前面的判斷語句返回值為真 返回?與 之間的語句 若判斷語句返回值為假 返回 和 之間的語句 2.switch語句 第一,switch後面的括號內只能存放整形或字元型 第二,每種cas...
C 判斷迴圈
if 判斷語句 單分支形式 if exp1 當exp1為真時,則執行exp2 雙分支形式 if exp1 else 當exp1為真時,則執行exp2,否則執行exp3 多分支形式 if exp1 else if exp3 else 當exp1為真時,則執行exp2 當exp3為真時,則執行exp4 ...
5 C 迴圈和判斷
for int i 0 i 5 i 或for int i 5 i i int a 0 while a 10 int a 0 do while a 5 int n 6 while n 0 對陣列或容器類 vector array int a for int i a 能夠修改陣列內容 int a for...