0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

APG4bで自分が書いたコード1 EX1~EX5

Last updated at Posted at 2022-07-07

AGP4bとは

AtCoder Programming Guide for beginners
AtCoderの初心者向けプログラミングガイドです
この記事ではC++ (GCC 9.2.1)を使っています

知的財産権
本サービスに対して投稿されたプログラムの所有権と著作権は、そのプログラムを作成したユーザに帰属します
https://atcoder.jp/tos
より引用

EX1 - コードテストと出力の練習

EX1.cpp
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  cout << "こんにちは" << endl;
  cout << "AtCoder!" << endl;
}

EX2 - エラーの修正

EX2.cpp
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  
  cout << "いつも2525" << endl;
  cout << "AtCoderくん" << endl;
}

EX3 - 計算問題

EX3.cpp
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  cout << 100*(100+1)/2 << endl;
}

EX4 - ◯年は何秒?

EX4.cpp

#include <bits/stdc++.h>
using namespace std;
 
int main() {
  // 一年の秒数
  int seconds = 365 * 24 * 60 * 60;
 
  // 以下のコメント/* */を消して追記する
  cout << seconds/* 1年は何秒か */ << endl;
  cout << 2*seconds/* 2年は何秒か */ << endl;
  cout << 5*seconds/* 5年は何秒か */ << endl;
  cout << 10*seconds/* 10年は何秒か */ << endl;
}

EX5 - A足すB問題

EX5.cpp
#include <bits/stdc++.h>
using namespace std;
 
int main() {
  
   int a, b;
  cin >> a >> b ;
  cout << a + b  << endl;
}


0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?