授業/C言語基礎/演算/練習問題/02B-6
をテンプレートにして作成
開始行:
*解答例1 [#haaec656]
#geshi(c){{
#include <stdio.h>
int main(void){
int x = (1 + 2) * 3;
printf("%d\n", x);
return 0;
}
}}
*解答例2 [#m02bbb8d]
#geshi(c){{
#include <stdio.h>
int main(void){
printf("%d\n", (1 + 2) * 3);
return 0;
}
}}
終了行:
*解答例1 [#haaec656]
#geshi(c){{
#include <stdio.h>
int main(void){
int x = (1 + 2) * 3;
printf("%d\n", x);
return 0;
}
}}
*解答例2 [#m02bbb8d]
#geshi(c){{
#include <stdio.h>
int main(void){
printf("%d\n", (1 + 2) * 3);
return 0;
}
}}
ページ名: