結果

問題 No.56 消費税
ユーザー addeight2addeight2
提出日時 2016-08-23 22:12:17
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 22,400 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 03:16:20
合計ジャッジ時間 829 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    2 | main(){
      | ^~~~
main.cpp: In function ‘int main()’:
main.cpp:6:7: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |  scanf("%d%d",&d,&p);
      |  ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
main(){
 int d;
 int p;
 double w;
 scanf("%d%d",&d,&p);
 w=(double)p/100*d;
 d=d+w;
 printf("%d\n",d);
 return 0;
 
 
 
 
 
 
}
0