入力された西暦を、オリンピックの開催年か判別するプログラムですが、下記のエラーが出ます。どこを間違えているか教えていただけないでしょうか。
|7|error: expected ')' before 'n'|
|12|error: stray '' in program|
|12|error: expected ')' before 'n'|
|19|error: stray '' in program|
|19|error: expected ')' before 'n'|
|25|error: stray '' in program|
|25|error: expected ')' before 'n'|
#include <stdio.h> int main(void) { int Ad; printf("西暦を入力してください。"\n); scanf("%d",&Ad); if ((Ad%4==0)&&(Ad>=1896)){ printf("夏のオリンピックの開催年です。"\n); } if ((Ad%4==2)&&(Ad>=1896)){ printf("冬のオリンピック開催年です。"\n); } if(Ad%2==1){ printf("オリンピック開催年ではありません"\n); } return 0; }
今の時期、難しい課題だね^^;
回答3件
あなたの回答
tips
プレビュー