Online C++ Compiler

#include<iostream> #include<cstdlib> #include<ctime> using namespace std; //使用標準函示庫 int dice[1+3]; //定義骰子陣列4個 void get_dice(void) { //骰子排序規則 int i,j,tmp; for(i=0;i<4;i++) { //骰出亂數:介於1~6 dice[i]=rand()%6+1; } for(i=0;i<4;i++) { //骰子小到大排序 for(j=i+1;j<4;j++) { //如果左>右,左右交換 if ( dice[i] > dice[j] ) { tmp=dice[i]; dice[i]=dice[j]; dice[j]=tmp; } } } } //下面定義骰子相加規則 int match_dice(void) {//定義原始分數0 int grade=0; if(dice[0]==dice[1] && dice[1]==dice[2] &&dice[2]==dice[3]) {//4顆一樣100分 grade=dice[0]*100; } else if(dice[0]==dice[1] && dice[1]==dice[2]) {//前3顆一樣0分 grade=0; } else if(dice[1]==dice[2] &&dice[2]==dice[3]) {//後3顆一樣0分 grade=0; } else if(dice[0]==dice[1] && dice[2]==dice[3]) {//0,1、2,3相同取2+3 grade=dice[2]+dice[3]; } else if(dice[0]==dice[1]) {//0,1相同取2+3 grade=dice[2]+dice[3]; } else if(dice[1]==dice[2]) {//1,2相同取0+3 grade=dice[0]+dice[3]; } else if(dice[2]==dice[3]) {//2,3相同取0+1 grade=dice[0]+dice[1]; } return grade; } int main(void) { //分數 int grade; //定義分數加總 int compare[2]; //分數加總寫進陣列 srand(time(NULL)); //時間重計 cout << "\n↓↓ *莊家先擲* ↓↓\n"; cout << "====================\n\n"; for (int i=0;i<2;i++) //開始擲骰 { do{ //跑到有分數為止 get_dice(); grade=match_dice(); if(grade==3) {cout << dice[0] << " " << dice[1] << " " << dice[2] << " " <<dice[3] << " Biiiiii Giiiiiiiii\n "; } else if(grade==100||grade==200||grade==300|| grade==400||grade==500||grade==600) {cout << dice[0] << " " << dice[1] << " " << dice[2] << " " <<dice[3] << " 豹子~殺殺殺~~\n"; } else if(grade!=0) {cout << dice[0] << " " << dice[1] << " " << dice[2] << " " <<dice[3] << " 共" << grade << "點\n"; } else if(grade==0) {cout << dice[0] << " " << dice[1] << " " << dice[2] << " " <<dice[3] << " 沒點再一次\n"; } }while(grade==0); cout << "====================\n\n"; compare[i]=grade; } cout << "↑↑ =玩家擲骰= ↑↑\n\n\n"; if(compare[0]>compare[1]) {cout << " *莊家贏*\n";} else if(compare[0]<compare[1]) {cout << " =玩家贏=\n";} else if(compare[0]==compare[1]) {cout << " --平 手--\n";} return 0; }

About Online C++ Compiler

Try our Online C++ Compiler (Version GNU GCC v11.3.0) to Edit, Run, and Share your C++ Code directly from your browser. This online development environment provides you the latest version GNU GCC v11.3.0.

How to use Online C++ Compiler?

Write and Execute Code

  • Write your program (or, paste it) directly under the "Source Code" tab.
  • If you want to save your program, go to the "Project" menu and save it.
  • You can directly execute your program without saving it by clicking on on "Execute" button.

User Input

The latest version of Coding Ground allows to provide program input at run time from the termnial window exactly the same way as you run your program at your own computer. So simply run a program and provide your program input (if any) from the terminal window available in the right side.

Online C++ Compiler: Keyboard Shortcuts

The following are the keyword shortcut of this Online C++ Compiler:

ShortcutDescription
⌘ + EnterRun the program
⌘ + SSave Project (Login Required)
⇧ + ⌘ + SSave As Project
⌘ + PNew Project
⌘ + GShare Project
⌘ + ZUndo Editing
⌘ + YRedo Editing
⌘ + ASelect All Text
⌘ + XCut Selected Text
⌘ + CCopy Selected Text
⌘ + VPaste Copied Text
⌘ + FSearch Text
⌘ + ⌥ + FReplace Text
ShortcutDescription
Ctrl + EnterRun the program
Ctrl + SSave Project
Shift + Ctrl + SSave As Project
Ctrl + GShare Project
Ctrl + ZUndo Editing
Ctrl + YRedo Editing
Ctrl + ASelect All Text
Ctrl + XCut Selected Text
Ctrl + CCopy Selected Text
Ctrl + VPaste Copied Text
Ctrl + FSearch Text
Ctrl + HReplace Text

Online C++ Compiler: Save and Share C++ Code (Project)

Save C++ Project Online

You can save your C++ Project with us so that you can access this project later on. To save a project you will need to create a login Id with us. So before you save a project, please create a login Id using a link given at the top right corner of this page.

Share C++ Project Online

You can use this feature to share your C++ Code with your teachers, classmates and colleagues. Just click Share Button and it will create a short link, which can be shared through Email, WhatsApp or even through Social Media. A shared link will be deleted if it has been passive for almost 3 months.

More Features of Online C++ Compiler

  • Theme – You can change the current editor's theme from the "Editor Theme" option under "Settings" menu.
  • Font Size – You can change the font size of the editor /compiler from from the "Font Size" option under "Settings" menu.
  • Tab Size – You can change the tab size from the "Tab Size" option under "Settings" Menu.
  • Show/Hide Line Numbers – You can show/hide the line number with the code from the "Show Line Numbers" or "Hide Line Numbers" option under "Settings" Menu.
  • And, many more.

Benefits of Using Online C++ Compiler

There are several benefits of using the Online C++ Compiler to run your C++ code:

  • Platform independence: You can run your code from any device without taking care of operating systems.
  • Convenience: You don't need to install anything for using this.
  • No setup required: There is no need for additional setup to run your code.
  • Updated version: Our online compiler/editors/terminals are the latest up-to-date.
 Execute |  Beautify | Share
My Projects
Change Password
My Profile
Logout
Undo
Redo
Cut
Copy
Paste
Delete
Select All
Find
Find and Replace
Editor Theme
Crimson
Eclipse
Github
Solarized
Cobalt
krTheme
Monokai
Terminal
Textmate
Twilight
Vibrant Ink
Font Size
8px
9px
10px
11px
12px
13px
14px
15px
16px
17px
18px
20px
22px
24px
Tab Size
1
2
3
4
5
6
7
8
Show Invisible
Hide Invisible
Show Line Numbers
Hide Line Numbers
Ace Editor (Default)
Vim Editor
Emacs Editor
Open New Project
Save Project
Save As New Project
Share Project
Search Project
Online Java Compiler
Online Python Compiler
Online C++ Compiler
Online CSharp Compiler
Online C Compiler
Online PHP Compiler
Online R Compiler
Online NumPy Compiler
More Compilers